home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / amigae.june.archive / 000021_crash!minyos.xx….OZ.AU!s924723_Mon, 7 Jun 93 21:52:11 PST.msg < prev    next >
Text File  |  1993-08-31  |  2KB  |  50 lines

  1. Received: by bkhouse.cts.com (V1.16/Amiga)
  2.     id AA00000; Mon, 7 Jun 93 21:52:11 PST
  3. Received: from peladon.rmit.OZ.AU by crash.cts.com with smtp
  4.     (Smail3.1.28.1 #15) id m0o2uLo-0002rDC; Mon, 7 Jun 93 20:27 PDT
  5. Received: from minyos.xx.rmit.OZ.AU by peladon.rmit.OZ.AU with SMTP id AA27033
  6.   (5.65c/IDA-1.4.4 for <amigae@bkhouse.cts.com>); Tue, 8 Jun 1993 13:27:39 +1000
  7. Received: by minyos.xx.rmit.oz.au
  8. Message-Id: <9306080327.9462@minyos.xx.rmit.oz.au>
  9. Date: Tue, 8 Jun 1993 13:27:23 +1000 (EST)
  10. In-Reply-To: <199306071614.AA21635@mars.let.uva.nl> from "Wouter van Oortmerssen" at Jun 7, 93 06:14:34 pm
  11. X-Mailer: ELM [version 2.4 PL21]
  12. Mime-Version: 1.0
  13. Content-Type: text/plain; charset=US-ASCII
  14. Content-Transfer-Encoding: 7bit
  15. Content-Length: 1067
  16. From: s924723@minyos.xx.rmit.OZ.AU (Son Huu Le)
  17. To: wouter@mars.let.uva.nl (Wouter van Oortmerssen)
  18. Cc: amigae@bkhouse.cts.com
  19. Subject: Re: your mailFgets() and EPP
  20.  
  21. > >> 
  22. > >> Does anyone know a way/function to print out floats? Is there a procedure 
  23. > >> either AmigaE itself, or ks2.04?
  24. >  
  25. > since E doesn't really support floats in 2.1b, there are no support
  26. > functions for it either, but for now, this works:
  27. >  
  28. > PROC writeflt(n)
  29. >   WriteF('\d.\z\d[4]\n',SpFix(n),SpFix(SpMul(SpAbs(SpSub(SpFlt(SpFix(n)),n)),
  30. > 100.)))
  31. > ENDPROC
  32. >  
  33. > vary the "[4]" and "10000." for different layouts.
  34.  
  35. .. Yeah, I had something along this line, except I multiply x by 100 and then 
  36. print a [cursor left][cursor left][insert] "." - a bit roundabout, bit it
  37. works (;
  38.   
  39. > >> A hint.. if you've got ks2.04, use Fgets() instead of ReadStr(). ReadStr()
  40. > >> is something like 30 times slower! (Replacing ReadStr() with Fgets() in EPP
  41. > >> makes it a lot more usable! :)
  42. >  
  43. > ReadStr() is unbuffered IO and Fgets() is buffered... You can't
  44. > always exchange them that easily as with EPP.
  45.  
  46. I don't know, I just replaced the read() routine in EPP with one that used
  47. Fgets() and it worked fine. Of course this is just one my system...
  48.  
  49. Son Le